25 lines
456 B
JSON
25 lines
456 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "nodenext",
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"lib": [
|
|
"esnext",
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"built/autogen/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"./built/**/*.js"
|
|
]
|
|
}
|