20 lines
414 B
JSON
20 lines
414 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./types",
|
|
"./global-types.d.ts"
|
|
],
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
}
|
|
}
|