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/remix-url-resolver/tsconfig.json

22 lines
481 B

6 years ago
{
"compileOnSave": false,
"include": ["./src"],
"compilerOptions": {
6 years ago
"baseUrl": "./src",
"outDir": "./dist",
"sourceMap": true,
"declaration": true,
6 years ago
"module": "commonjs",
"strict": true,
"noImplicitAny": false,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": ["node_modules/@types"],
"lib": ["dom", "es2018"],
"paths": {
"remix-url-resolver": ["./"]
6 years ago
}
}
}