24 lines
482 B
JSON
24 lines
482 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "Node16",
|
|
"lib": ["ESNext"],
|
|
"sourceMap": true,
|
|
"outDir": "out",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"moduleResolution": "Node16",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"out",
|
|
"node_modules"
|
|
]
|
|
}
|