22 lines
604 B
JSON
22 lines
604 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"rootDir": "./src/",
|
|
"outDir": "./dist/",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"typeRoots": ["./node_modules/@types","./plugins/*/"],
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"declaration": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["./src/*","./src/**/*"]
|
|
} |