mirror of https://github.com/fantasticit/think.git
38 lines
1.0 KiB
JSON
38 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"downlevelIteration": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"styles/*": ["styles/*"],
|
|
"services/*": ["services/*"],
|
|
"data/*": ["data/*"],
|
|
"hooks/*": ["hooks/*"],
|
|
"context/*": ["context/*"],
|
|
"components/*": ["components/*"],
|
|
"layout/*": ["layout/*"],
|
|
"constants/*": ["constants/*"],
|
|
"helpers/*": ["helpers/*"],
|
|
"tiptap/*": ["tiptap/*"],
|
|
"event/*": ["event/*"],
|
|
"diagram/*": ["diagram/*"],
|
|
"thirtypart/*": ["thirtypart/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "global.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "next.config.js"]
|
|
}
|