25 lines
579 B
JSON
25 lines
579 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2019",
|
|
"esModuleInterop": true,
|
|
"lib": ["es2021"],
|
|
"outDir": "../../dist/back",
|
|
"keyofStringsOnly": true,
|
|
"jsx": "react",
|
|
"reactNamespace": "TempstreamJSX",
|
|
"checkJs": false,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"include": ["./**/*", "./*"],
|
|
"ts-node": { "experimentalResolver": true, "esm": true }
|
|
}
|