init: inital commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
// Required for parcel
|
||||
"isolatedModules": true,
|
||||
"jsx": "react",
|
||||
|
||||
"skipLibCheck": true,
|
||||
|
||||
// Output related
|
||||
"target": "es2021",
|
||||
"outDir": "./build",
|
||||
"module": "commonjs",
|
||||
|
||||
// Module resolution
|
||||
"moduleResolution": "node",
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
|
||||
// Type checking
|
||||
"strict": true,
|
||||
|
||||
// Extra output
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
"inlineSourceMap": false
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.tsx", "node_modules/@nodecg/types/augment-window.d.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user