remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
remix-project/apps/1test/tsconfig.json

21 lines
411 B

2 years ago
{
"compilerOptions": {
"target": "ES6",
"allowJs": true,
"module": "commonjs",
2 years ago
"jsx": "react-jsx",
2 years ago
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["src/**/*"]
}