You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
574 B
JSON
22 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "CommonJS",
|
|
"experimentalDecorators": true,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"outDir": "lib",
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitThis": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"declaration": true,
|
|
"lib": ["es2020", "esnext.array", "DOM"]
|
|
},
|
|
"include": ["./src/**/*.ts"],
|
|
"exclude": ["node_modules", "src/Tests/*", "src/Binary/GenerateStatics.ts"]
|
|
}
|