mirror of https://github.com/fantasticit/think.git
35 lines
923 B
JSON
35 lines
923 B
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/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|