mirror of
https://github.com/steel-dev/cli.git
synced 2026-09-14 20:47:34 +08:00
19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|
// "extends": "@sindresorhus/tsconfig",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node16",
|
|
"noUnusedLocals": false,
|
|
"module": "Node16",
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": ["./node_modules/@types", "./source/types"],
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": false
|
|
},
|
|
"include": ["source"],
|
|
"exclude": ["node_modules", "examples"]
|
|
}
|