mirror of
https://github.com/FullScreenShenanigans/EightBittr.git
synced 2026-08-12 02:18:15 -07:00
28 lines
816 B
JSON
28 lines
816 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"module": "amd",
|
|
"moduleResolution": "node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "./lib",
|
|
"pretty": true,
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"target": "ES2021"
|
|
},
|
|
"exclude": ["**/*.d.ts", "**/lib"],
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
|
|
}
|