18 lines
380 B
JSON
18 lines
380 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["esnext"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "Node",
|
|
"target": "es5",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "scripts-dist",
|
|
"sourceRoot": "scripts"
|
|
},
|
|
"include": ["scripts/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|