mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
27 lines
730 B
JSON
27 lines
730 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowUnreachableCode": false,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"plugins": [{ "name": "next" }],
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"types": ["jest", "wicg-file-system-access"]
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
|
}
|