mirror of
https://github.com/react95-io/React95.git
synced 2026-01-10 15:07:56 -05:00
51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"module": "Node16",
|
|
"moduleResolution": "Node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "./lib",
|
|
"paths": {
|
|
"react95": [
|
|
"./src"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"rootDir": "./",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"target": "ES2018"
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"coverage",
|
|
"dist",
|
|
"node_modules",
|
|
"storybook"
|
|
]
|
|
}
|