16 lines
393 B
JSON
16 lines
393 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "CommonJS",
|
||
|
|
"lib": ["ES2020", "ES2021.String"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": ".",
|
||
|
|
"resolveJsonModule": true
|
||
|
|
},
|
||
|
|
"include": ["index.ts", "server/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "client", "dist", "extension", "**/*.test.ts"]
|
||
|
|
}
|